home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #1 / Cd 1 (black) - 2001.iso / K-CS.dcr / 00792_Hilite, hop ved højre.ls < prev    next >
Encoding:
Text File  |  2000-11-15  |  407 b   |  21 lines

  1. on new me
  2.   set the visible of sprite the spriteNum of me to 1
  3.   set the visible of sprite (the spriteNum of me + 1) to 0
  4. end
  5.  
  6. on rightMouseDown me
  7.   go(#next)
  8. end
  9.  
  10. on mouseEnter me
  11.   set the visible of sprite (the currentSpriteNum + 1) to 1
  12. end
  13.  
  14. on mouseLeave me
  15.   set the visible of sprite (the currentSpriteNum + 1) to 0
  16. end
  17.  
  18. on mouseUp me
  19.   set the visible of sprite (the currentSpriteNum + 1) to 0
  20. end
  21.